home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / ubufox / chrome / ubufox.jar / content / alternatePlugins.js next >
Encoding:
JavaScript  |  2009-04-14  |  3.9 KB  |  105 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is ubufox.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Canonical Ltd.
  18.  * Portions created by the Initial Developer are Copyright (C) 2008
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Doron Rosenberg <doronr@us.ibm.com>
  23.  *   Alexander Sack <asac@jwsdot.com> - Canonical Ltd.
  24.  *   Arzhel Younsi <xionox@gmail.com>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. var gBrowser = null;
  41. var gAltPluginWizard = null;
  42.  
  43. altPluginWizard.prototype.pluginUsed = function(pluginElement){
  44.  
  45.   var pluginsArray = pluginElement.ownerDocument.mimeContent;
  46.   if (!pluginsArray)
  47.     pluginsArray = {};
  48.  
  49.   var pluginInfo = getPluginInfo(pluginElement);
  50.   pluginsArray[pluginInfo.mimetype] = pluginInfo;
  51.   var thisTab = pluginElement.ownerDocument;
  52.   thisTab.mimeContent = pluginsArray;
  53.  
  54.   if (gBrowser.selectedBrowser.contentDocument != pluginElement.ownerDocument)
  55.       return;
  56.  
  57.   var iconAltPlugins = document.getElementById("iconAltPlugins");
  58.   iconAltPlugins.hidden = false;
  59.   var menuAltPlugins = document.getElementById("menuAltPlugins");
  60.   menuAltPlugins.disabled = false;
  61. }
  62.  
  63. altPluginWizard.prototype.tabSelected = function(aEvent){
  64.  
  65.   if(gBrowser.selectedBrowser.contentDocument.mimeContent){
  66.     var iconAltPlugins = document.getElementById("iconAltPlugins");
  67.     iconAltPlugins.hidden = false;
  68.     var menuAltPlugins = document.getElementById("menuAltPlugins");
  69.     menuAltPlugins.disabled = false;
  70.   }else{
  71.     var iconAltPlugins = document.getElementById("iconAltPlugins");
  72.     iconAltPlugins.hidden = true;
  73.     var menuAltPlugins = document.getElementById("menuAltPlugins");
  74.     menuAltPlugins.disabled = true;
  75.   }
  76. }
  77.  
  78. altPluginWizard.prototype.domContentLoaded = function(aEvent){
  79.     var elements = aEvent.target.getElementsByTagName("embed");
  80.     for (let a = 0; a< elements.length; a++) {
  81.     gAltPluginWizard.pluginUsed (elements[a]);
  82.     }
  83. }
  84.  
  85. function altPluginWizard(){
  86. }
  87.  
  88. function openPluginFinder(contentMimeArray){
  89.     
  90.   window.openDialog("chrome://ubufox/content/pluginAlternativeOverlay.xul",
  91.                    "PFSWindow", "chrome,centerscreen,resizable=yes",
  92.                    {plugins: contentMimeArray, browser: gBrowser.selectedBrowser});
  93. }
  94.  
  95. window.addEventListener("load", function() {
  96.  
  97.   gBrowser = document.getElementById("content");  
  98.   gAltPluginWizard = new altPluginWizard();
  99.   gBrowser.tabContainer.addEventListener("TabSelect", gAltPluginWizard.tabSelected, false);
  100.   gBrowser.addEventListener("DOMContentLoaded", gAltPluginWizard.domContentLoaded, false);
  101.   window.removeEventListener("load", arguments.callee, false);
  102.  
  103. }, false);
  104.  
  105.